GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 36194c...3c18d9 )
by Benjamin
01:42
created

loader.js ➔ loader   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
c 0
b 0
f 0
nc 2
dl 0
loc 14
rs 9.4285
nop 2
1
import { fromJS } from 'immutable';
2
3
import {
4
    SET_LOADING_STATE
5
} from '../../../constants/ActionTypes';
6
7
import { generateLastUpdate } from './../../../util/lastUpdate';
8
9
import {
10
    setLoading
11
} from './../../actionHelpers/plugins/loader';
12
13
import
14
    handleActions
15
from './../../../util/handleActions';
16
17
const initialState = fromJS({ lastUpdate: generateLastUpdate() });
18
19
export default handleActions({
20
    [SET_LOADING_STATE]: setLoading
21
}, initialState);
22